home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / batch / bat_com / read.me next >
Text File  |  1989-01-28  |  2KB  |  43 lines

  1.         The enclosed program takes the place of simple batch files.
  2. It loads and runs faster than a batch file, and, under DESQVIEW, does
  3. not require the extra memory for COMMAND.COM to interpret the batch
  4. file.
  5.  
  6.         This program can ONLY set up an environment and run a set of
  7. 1 . . . N EXTERNAL commands.  It will not do internal commands. 
  8. It may not work with some programs:  I was lazy, and didn't set up
  9. any default FCBs; so programs that look for their command line
  10. arguments in the FCB fields of the PSP will fail.
  11.  
  12.         I have not included a COM file because the source must be
  13. modified for each incarnation.
  14.  
  15.         To modify:
  16.  
  17. 1.  Set up the environment you want (as in lines 62 - 74 of the
  18. supplied .ASM file)
  19.  
  20. 2.  Add the pathnames and command lines for the programs you want to
  21. run (as in lines 78 - 103 of the supplide .ASM file).  Note that the
  22. PATH will not be searched; you must either include the program
  23. pathname relative to a known default directory, or the entire
  24. pathname.  The entire pathname is safest.  Also note that the program
  25. MUST have a .COM or .EXE extension.
  26.  
  27. For programs that don't take a command line, you can use the same
  28. null_cmd_tail for each one.
  29.  
  30. 3.  Fill in the address table (as in lines 107 - 120 of the supplied
  31. .ASM file).  Note that the "program:" portion is necessary.  The
  32. program table must consist of the address of the name of the first
  33. program to be run, the address of the command line for the first
  34. program to be run, the address of the anme of the second program to
  35. be run, etc.
  36.  
  37. 4.  Assemble, link, and EXE2BIN the program.
  38.  
  39.  
  40.  
  41. Jon Fleming (BIX: jfleming)
  42. 1/29/89
  43.